home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / s_to_z / smtpmail / smtpsu.pas < prev    next >
Pascal/Delphi Source File  |  1996-09-15  |  609b  |  36 lines

  1. unit Smtpsu;
  2.  
  3. interface
  4.  
  5. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
  6.   StdCtrls, ExtCtrls;
  7.  
  8. type
  9.   TSetupDlg = class(TForm)
  10.     OKBtn: TBitBtn;
  11.     CancelBtn: TBitBtn;
  12.     Label1: TLabel;
  13.     ServerEdit: TEdit;
  14.     Label2: TLabel;
  15.     UserAddressEdit: TEdit;
  16.     Label3: TLabel;
  17.     UserNameEdit: TEdit;
  18.     Label4: TLabel;
  19.     LogFileNameEdit: TEdit;
  20.     Label5: TLabel;
  21.     EncodeComboBox: TComboBox;
  22.   private
  23.     { Private declarations }
  24.   public
  25.     { Public declarations }
  26.   end;
  27.  
  28. var
  29.   SetupDlg: TSetupDlg;
  30.  
  31. implementation
  32.  
  33. {$R *.DFM}
  34.  
  35. end.
  36.